home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 August / MW 8 2003 CD1.iso / Inside Macworld / Product News / gimp-1.2.4.sit / gimp-1.2.4 / help / C / dialogs / Makefile.am < prev    next >
Encoding:
Makefile  |  2001-10-28  |  1.4 KB  |  63 lines

  1. ## Process this file with automake to produce Makefile.in
  2.  
  3. SUBDIRS = layers channels paths palette_editor gradient_editor color_selectors preferences 
  4.  
  5. helpdatadir = $(gimpdatadir)/help/C/dialogs
  6.  
  7. helpdata_DATA = \
  8.     about.html            \
  9.     border_selection.html        \
  10.     brush_editor.html        \
  11.     brush_selection.html        \
  12.     confirm_save.html        \
  13.     convert_to_indexed.html        \
  14.     copy_named.html            \
  15.     cut_named.html            \
  16.     device_status.html        \
  17.     document_index.html        \
  18.     edit_qmask_attributes.html    \
  19.     error_console.html        \
  20.     export_file.html        \
  21.     feather_selection.html        \
  22.     file_new.html            \
  23.     file_open.html            \
  24.     file_save.html            \
  25.     gradient_selection.html        \
  26.     grow_selection.html        \
  27.     help.html            \
  28.     index.html            \
  29.     indexed_palette.html        \
  30.     info_window.html        \
  31.     input_devices.html        \
  32.     layers_and_channels.html    \
  33.     module_browser.html        \
  34.     navigation_window.html        \
  35.     offset.html            \
  36.     palette_selection.html        \
  37.     paste_named.html        \
  38.     pattern_selection.html        \
  39.     really_close.html        \
  40.     really_quit.html        \
  41.     scale_image.html        \
  42.     scale_layer_warn.html        \
  43.     set_canvas_size.html        \
  44.     shrink_selection.html        \
  45.     tip_of_the_day.html        \
  46.     tool_options.html        \
  47.     undo_history.html 
  48.  
  49. EXTRA_DIST = $(helpdata_DATA)
  50.  
  51. .PHONY: files
  52.  
  53. files:
  54.     @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
  55.       echo $$p; \
  56.     done
  57.     @for subdir in $(SUBDIRS); do \
  58.       files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
  59.       for file in $$files; do \
  60.         echo $$subdir/$$file; \
  61.       done; \
  62.     done
  63.